home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Cream of the Crop 1
/
Cream of the Crop 1.iso
/
EDITOR
/
AMAC44.ARJ
/
QMACT-N.BAT
< prev
next >
Wrap
DOS Batch File
|
1990-09-30
|
318b
|
13 lines
@echo off
rem qmacT-n.bat for single column txtfile Sun 09-30-1990
cls
echo Converts %1.MAC (binary) To %1.QM (text)
if not exist %1.MAC goto NOTEXIST
QMAC %1.MAC %1.QM /T /A- /W15 %2 %3
goto END
:NOTEXIST
echo %1.QM does not exist
:END